import { getLocalizedMdx } from "@/shared/lib/mdx/load-mdx"; type PageProps = { params: Promise<{ locale: string }>; }; export default async function AboutPage({ params }: PageProps) { const { locale } = await params; const content = await getLocalizedMdx("about", locale); return (